home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Mania 5
/
MacMania 5.toast
/
/
Tools&Utilities
/
Plotfoil 3.2
/
naca-1.0
/
exit.f
next >
Wrap
Text File
|
1995-09-13
|
489b
|
18 lines
c
c------------------------------------------------------------------------------
c
SUBROUTINE Exit( i )
c
IMPLICIT none
INTEGER i
c
c This routine is a replacement for the exit() system call, which is
c lacking a trailing underscore on the HP's that I have access to. All
c the other library functions have the underscore, as is customary
c with UNIX Fortran compilers, so it looks like a stupid fuckup by
c HP (is that really surprising?).
c
stop
END